|
In certain systems for object-oriented programming such as the Common Lisp Object System〔(The Common Lisp Object System: An Overview )〕 and Dylan, a generic function is an entity made up of all methods having the same name. Typically a ''generic function'' itself is an instance of a class that inherits both from ''function'' and ''standard-object''. Thus generic functions are both functions (that can be called with and applied to arguments) and ordinary objects. The book ''The Art of the Metaobject Protocol'' explains the implementation and usage of CLOS generic functions in detail. Flavors is one of the early object-oriented programming extensions to Lisp. It used the usual message sending paradigm influenced by Smalltalk. The syntax for sending a message in Flavors is: With New Flavors it was decided the message should be a real function and the usual function calling syntax should be used: ''message'' now is a ''generic function'', an object and function in its own right. Individual implementations of the ''message'' are called ''methods''. The same idea was implemented in CommonLoops.〔(CommonLoops, Merging Lisp and Object-Oriented Programming )〕 New Flavors and CommonLoops were the main influence for the Common Lisp Object System. == Example == 抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「generic function」の詳細全文を読む スポンサード リンク
|